projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb6f9e1
)
meson: depend on glib >= 2.53.1
author
Ernestas Kulik
<ernestask@gnome.org>
Wed, 3 May 2017 14:36:45 +0000
(17:36 +0300)
committer
Emmanuele Bassi
<ebassi@gnome.org>
Wed, 3 May 2017 15:14:58 +0000
(16:14 +0100)
The code uses g_object_new_with_properties(), which is only available in
versions 2.53.1 and up.
https://bugzilla.gnome.org/show_bug.cgi?id=782123
meson.build
patch
|
blob
|
history
diff --git
a/meson.build
b/meson.build
index d88ddd49c05f70b35679d45212e87a14c728c3e1..b16d3c10d8add7edde4bd75f9732a8662a95f58e 100644
(file)
--- a/
meson.build
+++ b/
meson.build
@@
-9,8
+9,8
@@
project('gtk+-4.0', 'c',
license: 'LGPLv2.1+')
glib_major_req = 2
-glib_minor_req =
49
-glib_micro_req =
4
+glib_minor_req =
53
+glib_micro_req =
1
if glib_minor_req.is_odd()
glib_min_required = 'GLIB_VERSION_@0@_@1@'.format(glib_major_req, glib_minor_req - 1)